home *** CD-ROM | disk | FTP | other *** search
/ Champak 109 / Vol 109.iso / games / 2_cool_f.swf / scripts / DefineButton2_147 / BUTTONCONDACTION on(release).as
Text File  |  2008-11-12  |  389b  |  17 lines

  1. on(release){
  2.    if(hair._currentframe < hair._totalframes)
  3.    {
  4.       hair.nextFrame();
  5.       hair_main.nextFrame();
  6.       hair_main.hair.gotoAndStop(hairCol);
  7.       hair.hair.gotoAndStop(hairThumbCol);
  8.    }
  9.    else
  10.    {
  11.       hair.gotoAndStop(1);
  12.       hair_main.gotoAndStop(1);
  13.       hair_main.hair.gotoAndStop(hairCol);
  14.       hair.hair.gotoAndStop(hairThumbCol);
  15.    }
  16. }
  17.